-
Notifications
You must be signed in to change notification settings - Fork 352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add parser for official case counts in Ontario, Canada #705
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/covid19-scenarios/covid19-scenarios/6dot4davt |
'Reported Date': 'time', | ||
'Total Cases': 'cases', | ||
'Deaths': 'deaths', | ||
'Number of patients hospitalized with COVID-19': 'hospitalized', | ||
'Number of patients in ICU with COVID-19': 'icu', | ||
'Resolved': 'recovered', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the mapping of columns
Codecov Report
@@ Coverage Diff @@
## master #705 +/- ##
=======================================
Coverage 24.58% 24.58%
=======================================
Files 134 134
Lines 2896 2896
Branches 386 386
=======================================
Hits 712 712
Misses 2184 2184 |
Code Climate has analyzed commit 40c3b72 and detected 0 issues on this pull request. View more on Code Climate. |
this looks great. thanks. your solution with pandas is nice and leaner than what most other parsers do. |
Related issues and PRs
Description
This adds a dedicated case counts parser for Ontario province of Canada.
The data is taken from the website of the government of Ontario.
pandas
. It looked like the simplest solution to meImpacted Areas in the application
data, case counts
Testing